home *** CD-ROM | disk | FTP | other *** search
- Path: nyx10.cs.du.edu!not-for-mail
- From: vputz@nyx10.cs.du.edu (Victor Putz)
- Newsgroups: comp.lang.c++,comp.sys.hp.hpux
- Subject: Re: Problem on using STL
- Date: 8 Mar 1996 09:33:02 -0700
- Organization: University of Denver, Math/CS Dept.
- Message-ID: <4hpnfu$nva@nyx10.cs.du.edu>
- References: <4f8fik$8p@upsnews.ups.com> <3119E874.7FFC@pal.uu.se> <4fekit$t58@usenet4.interramp.com> <4fge21$cef@news.rz.uni-passau.de>
- NNTP-Posting-Host: nyx10.nyx.net
- X-Newsreader: NN version 6.5.0 #3 (NOV)
-
- ruscha@forwiss.uni-passau.de (Dieter Ruscha) writes:
-
- >There is a MFC-tuned version of the HP-STL avaiable at
- >http://www.rahul.net/terris/
- >The only problem i have is with a 2-dim array like
- >std::vector< std::vector<int> > a;
- >But otherwise it works fine.
-
- > Dieter
-
-
- I had this trouble myself, and solved it by the following kludge:
-
- class VECTORT : public std::vector< T > {}; //dummy class
- std::vector< VECTORT > vect;
-
- It works just fine; just looks ugly.
-
- -->VPutz
-
-